home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / usenet / sources / volume90 / rexx / qf / part01 / qf.txed < prev    next >
Text File  |  1990-05-20  |  709b  |  28 lines

  1. /*
  2.  * qf.txed - a QuickFix startup macro for TxEd+ editor.
  3.  */
  4.  
  5. /*
  6.  * Do the normal startup first.
  7.  */
  8. call startup
  9.  
  10. /*
  11.  * Then define some function keys for qf-functions.
  12.  */
  13.  
  14. /* Function 2 saves and exits with no error */
  15. 'macro 2 qfquit 1 0'
  16. /* Function 12 saves and exits with an error return */
  17. 'macro 12 qfquit 1 5'
  18. /* Function 3 doesn't save and exits with an error return */
  19. 'macro 3 qfquit 0 5'
  20. /* Function 7 steps to the previous suberror at the same error level */
  21. 'macro 7 qfprev 0'
  22. /* Function 17 steps to the previous error */
  23. 'macro 17 qfprev 1'
  24. /* Function 8 steps to the next suberror at the sae error level */
  25. 'macro 8 qfnext 0'
  26. /* Function 18 steps to the next error */
  27. 'macro 18 qfnext 1'
  28.